<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <link rel="icon" type="image/png" href="https://www.hareketligifler.net/data/media/903/turkiye-bayragi-hareketli-resim-0026.gif" sizes="32x32" />
<title>RADYO iSMiNi YAZINIZ</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta name="generator" content="Web Page Maker">
<style type="text/css">
/*----------Text Styles----------*/
.ws6 {font-size: 8px;}
.ws7 {font-size: 9.3px;}
.ws8 {font-size: 11px;}
.ws9 {font-size: 12px;}
.ws10 {font-size: 13px;}
.ws11 {font-size: 15px;}
.ws12 {font-size: 16px;}
.ws14 {font-size: 19px;}
.ws16 {font-size: 21px;}
.ws18 {font-size: 24px;}
.ws20 {font-size: 27px;}
.ws22 {font-size: 29px;}
.ws24 {font-size: 32px;}
.ws26 {font-size: 35px;}
.ws28 {font-size: 37px;}
.ws36 {font-size: 48px;}
.ws48 {font-size: 64px;}
.ws72 {font-size: 96px;}
.wpmd {font-size: 13px;font-family: Arial,Helvetica,Sans-Serif;font-style: normal;font-weight: normal;}
/*----------Para Styles----------*/
DIV,UL,OL /* Left */
{
 margin-top: 0px;
 margin-bottom: 0px;
}
</style>

<link rel="me" href="https://www.blogger.com/profile/04082015064138623467" />
<meta name='google-adsense-platform-account' content='ca-host-pub-1556223355139109'/>
<meta name='google-adsense-platform-domain' content='blogspot.com'/>
</head>
<body bgColor="#000000">
<div id="text1" style="position:absolute; overflow:hidden; left:0px; top:565px; width:1108px; height:175px; z-index:0">
<div data-type="newStreamPlayer" data-publicToken="fc752806-b823-45b4-9e57-f70c7f0e8c54" data-theme="dark" data-color="FF0000" data-channelId="" data-rendered="false" class="cstrEmbed"><a href="https://www.caster.fm">Shoutcast Hosting</a> <a href="https://www.caster.fm">Stream Hosting</a> <a href="https://www.caster.fm">Radio Server Hosting</a></div><script src="//cdn.cloud.caster.fm//widgets/embed.js"></script></div>
  <body bgColor="#000000">
<div id="image1" style="position:absolute; overflow:hidden; left:0px; top:739px; width:1100px; height:8px; z-index:0"><img src="https://img1.dreamies.de/img/539/b/bogu89up975.jpg" alt="" title="" border=0 width=1100 height=8></div>
<body bgColor="#000000">
<div id="image1" style="position:absolute; overflow:hidden; left:0px; top:700px; width:972px; height:39px; z-index:3"><img src="https://img1.dreamies.de/img/34/b/86sux088vvw.jpg" alt="" title="" border=0 width=970 height=39></div>
</div>

<div id="html2" style="position:absolute; overflow:hidden; left:0px; top:0px; width:1100px; height:700px; z-index:1">
<iframe src='https://chameleon.chattersnet.nl/chat/12654' allow="camera;microphone" width='1100' height='700' framespacing='0' frameborder='no' scrolling='no' ></iframe></div>

<div id="html1" style="position:absolute; overflow:hidden; left:1140px; top:0px; width:350px; height:747px; z-index:0">

<!DOCTYPE html>
<html lang="tr">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #000000;
      color: #f5fffa;
      text-align: center;
      margin: 0;
      padding: 0;
    }
    .mp3-container {
      /* Sabit boyut: en 300px, boy 190px */
      width: 300px;
      height: 190px;
      min-width: 300px;
      max-width: 300px;
      min-height: 190px;
      max-height: 190px;


      border: 5px solid red;
      overflow-y: auto;
      padding: 7px;
      margin: 10px auto 5px auto; /* Alt marjini azaltarak butonlara yakınlaştırdık */
      background-color: #1c1c1c;
      border-radius: 10px;
    }
    .mp3-item {
      padding: 8px;
      margin: 5px 0;
      background-color: #ff0000;
      cursor: pointer;
      border-radius: 5px;
      transition: background 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .mp3-item:hover {
      background-color: #bb0000;
    }
    .mp3-item button {
      margin-left: 10px;
      background-color: white;
      color: red;
      border: none;
      padding: 3px 6px;
      cursor: pointer;
      border-radius: 3px;
    }
    .controls {
      margin-top: 0px;  /* Butonlar için üst marjini azaltarak MP3 çerçevesine yakınlaştırdık */
    }
    .button {
      background-color: #ff0202;
      color: white;
      padding: 3px 5px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin:0px;
    }
  </style>
</head>
<body>
   <!-- Dosya input'u gizli bırakılıyor -->
  <input type="file" id="mp3Input" multiple accept="audio/mp3" style="display: none">

  <div class="mp3-container" id="mp3List"></div>

  <div class="controls">
    <!-- MP3 Yükle butonunu Durdur butonunun yanına aldık -->
    <button class="button" onclick="uploadMP3()">MP3-Yükle</button>
    <button class="button" onclick="stopMP3()">Radyo-Durdur</button>
  </div>

  <script>
    let mp3Files = [];
    let mp3Player = new Audio();
    let mediaStream = null;

    function uploadMP3() {
      document.getElementById('mp3Input').click();
    }

    document.getElementById('mp3Input').addEventListener('change', (event) => {
      const files = Array.from(event.target.files);
      const mp3List = document.getElementById('mp3List');
      files.forEach((file) => {
        mp3Files.push(file);
        const item = document.createElement('div');
        item.classList.add('mp3-item');
        item.textContent = file.name;
        item.onclick = () => playMP3(file);

        const deleteBtn = document.createElement('button');
        deleteBtn.textContent = 'Sil';
        deleteBtn.onclick = (e) => {
          e.stopPropagation();
          mp3Files = mp3Files.filter(f => f !== file);
          mp3List.removeChild(item);
        };
        item.appendChild(deleteBtn);
        mp3List.appendChild(item);
      });
    });

    function playMP3(file) {
      // Şu an çalınan dosyayı kaydetmek için:
      mp3Player.currentFile = file;
      mp3Player.src = URL.createObjectURL(file);
      mp3Player.play();
      // Şarkı bittiğinde otomatik olarak playNextMP3 fonksiyonunu çağır:
      mp3Player.onended = playNextMP3;
    }

    function playNextMP3() {
      if(mp3Files.length > 0) {
        let currentIndex = mp3Files.indexOf(mp3Player.currentFile);
        // Eğer geçerli dosya bulunamazsa veya listenin sonundaysa, başa dön:
        currentIndex = (currentIndex + 1) % mp3Files.length;
        playMP3(mp3Files[currentIndex]);
      }
    }

    function stopMP3() {
      mp3Player.pause();
      mp3Player.currentTime = 0;
    }

    async function toggleMic() {
      if (!mediaStream) {
        try {
          mediaStream = await navigator.mediaDevices.getUserMedia({ audio: true });
          alert("Mikrofon Açıldı!");
        } catch (error) {
          alert("Mikrofon başlatılamadı!");
        }
      } else {
        mediaStream.getTracks().forEach(track => track.stop());
        mediaStream = null;
        alert("Mikrofon Kapatıldı!");
      }
    }

    function closeMic() {
      if (mediaStream) {
        mediaStream.getTracks().forEach(track => track.stop());
        mediaStream = null;
        alert("Mikrofon Kapatıldı!");
      } else {
        alert("Mikrofon zaten kapalı.");
      }
    }

    function toggleHeadset() {
      alert("Kulaklık modunu açıp kapatma özelliği sizin kontrolünüzde!");
      // Bu alana kulaklık moduyla ilgili ileri düzey işlevsellik ekleyebilirsiniz.
    }
  </script>
</body>
</html>

</body>
</html>

</body>
</html>


  </style>
</head>
<body>

    <div class="divider"></div>

   <!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        .container {
            width: 340px;
            height: 165px;
            border: 5px solid red;
            overflow: hidden;
            resize: both;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        iframe {
            width: 100%;
            height: 100%;
            border: none;
            position: absolute;
            top: 0;
            left: 0;
        }
        input {
            margin: 5px;
            padding: 5px;
            width: 175px;
        }
        button {
            margin: 0px;
            padding: 8px 10px;
            background-color: red;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: bold;
            border-radius: 15px;
        }
        button:hover {
            background-color: darkred;
        }
    </style>
</head>
<body>
    <input type="text" id="urlInput" placeholder="URL girin" value="https://music.youtube.com/">
    <button id="loadButton">Youtube-URL-Gönder</button>

    <div class="container">
        <iframe id="webFrame" src="https://music.youtube.com/"></iframe>
    </div>

    <script>
        document.getElementById("loadButton").addEventListener("click", function() {
            let url = document.getElementById("urlInput").value.trim();

            if (!url) {
                alert("Lütfen bir URL girin!");
                return;
            }

            // YouTube Müzik video linklerini embed formatına çevir
            if (url.includes("music.youtube.com/watch?v=") || url.includes("youtube.com/watch?v=")) {
                let videoID = url.split("watch?v=")[1].split("&")[0];
                url = "https://www.youtube.com/embed/" + videoID + "?autoplay=1&rel=0";
            }

            // URL başında "http://" veya "https://" yoksa ekle
            if (!url.startsWith("http://") && !url.startsWith("https://")) {
                url = "https://" + url;
            }

            document.getElementById("webFrame").src = url;
        });
    </script>
</body>
</html>

<meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        /* CSS stilleri */
        body {
            font-family: Arial, sans-serif;
            background-color: #000000;
            color: #F5FFFA;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
        }
        .button {
            background-color: #ff0202;
            color: rgb(255, 255, 255);
            padding: 7px 10px;
            border: none;
            border-radius:3px;
            cursor: pointer;
            margin-top: 0px;
            justify-content: center;
        }
        .radio-button {
            background-color: #3d3830;
            color: rgb(255, 255, 255);
            padding: 5px 5px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 3px;
            margin-right: 4px;
            width: 100px;
        }
        .radio-button:hover {
            background-color: #f30000;
        }
        .radio-container {
            display: flex;
            flex-wrap: wrap; /* Değiştirildi */
            justify-content: center; /* Değiştirildi */
            margin-top: 0px;
        }
        .radio-player {
            width: 300px;
            justify-content: center;
            margin-top: 3px;
        }
        #stopRadioButton {
            background-color: #ff0000;
            margin-top: 0px;
            font-size: 14px;
            width: 100%;
            height: 25px;
            text-align: center;
        }
        .menu-row {
            display: flex;
            flex-wrap: wrap; /* Değiştirildi */
            justify-content: center;
            margin-top: 4px;
        }
        .menu-item {
            width:90px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin:4px;
            cursor: pointer;
            border-radius: 3px;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }
        .menu-item:hover {
            background-color: #000000;
        }
        .menu-color-4 {
            background-color: #ff0909;
        }
        .menu-color-5 {
            background-color: #bb0000;
        }
        .menu-color-6 {
            background-color: #ff0000;
        }
        .menu-color-7 {
            background-color: #ff0000;
        }
        .menu-color-8 {
            background-color: #ff0d0d;
        }
        .menu-color-9 {
            background-color: #ff0606;
        }

        .file-player-container {
            display: flex;
            flex-wrap: wrap;
        }

        .file-player-container .button {
            width: 65px; /* Buton genişliği */
            height: 22px; /* Buton yüksekliği */
            font-size: 15px; /* Buton yazı tipi boyutu */
            margin: 2px; /* Butonların dış kenar boşluğu */
            padding: 0px;
            background-color: #ff0f0ffd;
        }
        #effect-button {
            background-color: #fc0000;
        }
        .divider {
            width: 100%; /* Çizginin tam genişlikte olmasını sağlar */
            height: 0px; /* Çizgi kalınlığı */
            background-color: #ff0000; /* Çizgi rengi */
            margin-top: 0px; /* Üst ve alt boşluk */
        }
    </style>
</head>
<body>
        <div class="divider"></div>
    <p style="font-size: 12px;"></p>
    <input type="file" id="fileInput" multiple style="display: none;">

    <audio id="audioElement" style="display:none"></audio>
    <div class="divider"></div>
    <p style="font-size: 10px;"></p>
    <button id="stopRadioButton" onclick="stopRadio()" class="button">( DSN SERTOĞLU ) RADYO DURDUR</button>
    <div id="radioStations" class="radio-container"></div>
    <audio class="radio-player" id="radioPlayer" controls></audio>
    <div class="divider"></div>
    <button id="effect-button" onclick="selectAndPlayAudio()" class="button" style="margin-top: 4px;">( DSN SERTOĞLU EFEKTLER EKLEYEBİLİRSİNİZ</button>

    <div id="selectedFilesContainer" class="file-player-container">
    </div>
    <div class="divider"></div>
    <div class="menu-row">
        <div class="menu-item menu-color-4" onclick="openNewTab('https://kuran.diyanet.gov.tr/mushaf')">Kur'An</div>


     <div class="menu-item menu-color-5" onclick="openNewTab('https://www.youtube.com/')">Youtube</div>
        <div class="menu-item menu-color-6" onclick="openNewTab('https://notube.net/tr/youtube-app-v160')">Mp3 İndir</div>
        <div class="menu-item menu-color-7" onclick="openNewTab('https://fm.tc/panel.php')">İstek.Bak</div>
        <div class="menu-item menu-color-8" onclick="openNewTab('https://www.facebook.com/')">Facebook</div>
        <div class="menu-item menu-color-9" onclick="openNewTab('https://music.youtube.com/')">Youtube.M</div>
        <div class="menu-item menu-color-7" onclick="openNewTab('https://www.hayatmix.com/slow/')">Hayat.Mix</div>
        <div class="menu-item menu-color-8" onclick="openNewTab('https://www.dreamies.de/account.php')">Resim.Yük</div>
        <div class="menu-item menu-color-9" onclick="openNewTab('https://www.remove.bg/tr')">Png.Yapma</div>
        <div class="menu-item menu-color-7" onclick="openNewTab('https://chameleon.chattersnet.nl/')">Admin</div>
        <div class="menu-item menu-color-8" onclick="openNewTab('https://chameleon.chattersnet.nl/register.php')">Nick Al</div>
        <div class="menu-item menu-color-9" onclick="openNewTab('http://5sertoglu.rf.gd')">Forum</div>
        <div class="menu-item menu-color-7" onclick="openNewTab('https://www.cnnturk.com/canli-yayin')">Cnn.Tür</div>
        <div class="menu-item menu-color-8" onclick="openNewTab('https://draft.blogger.com/blog/themes/1493470642230428536')">Dj.K.Panel</div>
        <div class="menu-item menu-color-9" onclick="openNewTab('https://cloud.caster.fm/login')">Caster.Fm</div>
    <script>
        var audioElement = document.getElementById('audioElement');
        var playButton = document.getElementById('playButton');
        var resetButton = document.getElementById('resetButton');
        var fileInput = document.getElementById('fileInput');
        var playlist = [];
        var currentSongIndex = 0;

        function browseFiles() {
            fileInput.click();
        }

        fileInput.addEventListener('change', function() {
            var files = this.files;
            if (files.length > 0) {
                alert("Seçilen Dosya: " + files[0].name);
                for (var i = 0; i < files.length; i++) {
                    playlist.push({ url: URL.createObjectURL(files[i]), name: files[i].name });
                }
                playButton.disabled = false;
            } else {
                playButton.disabled = true;
            }
        });

        function playAudio() {
            if (currentSongIndex < playlist.length) {
                audioElement.src = playlist[currentSongIndex].url;
                audioElement.play();
                currentSongIndex++;
                if (currentSongIndex >= playlist.length) {
                    currentSongIndex = 0;
                }
            }
        }

        function resetPlaylist() {
            playlist = [];
            alert("Oynatma listesi sıfırlandı.");
            playButton.disabled = true;
            audioElement.pause();
        }

        function stopRadio() {
            var radioPlayer = document.getElementById('radioPlayer');
            radioPlayer.pause();
        }

        var radioStationsDiv = document.getElementById('radioStations');
        var radioPlayer = document.getElementById('radioPlayer');
        var radioStations = [
                        { name: "Kur'an Meali", url: "https://anadolu.liderhost.com.tr:10993/; " },
            { name: "Nebi Fm", url: "https://anadolu.liderhost.com.tr:10901/;" },
            { name: "Arabesk Fm", url: "https://yayin.arabeskfm.biz:8042/stream?icy=http" },
            { name: "Ekin Fm", url: "http://yayin.turkhosted.com:6006/;" },
            { name: "Ende Fm", url: "http://yayin2.canliyayin.org:7052/;" },
            { name: "Eynesil Fm", url: "https://ip169.ozelip.com:10975/;stream.nsv&type=mp3" },
            { name: "Erciş Fm", url: "https://anadolu.liderhost.com.tr:10970/;" },
           { name: "GencKral Fm", url: "https://anadolu.liderhost.com.tr/8090/;" },
            { name: "Popiler Fm", url: "https://anadolu.liderhost.com.tr:10919/;" },
            { name: "Yozgat Fm ", url: "http://surmelifm.kesintisizyayin.com:8590/;" },
            { name: "Haktan Fm", url: "http://anadolu.liderhost.com.tr:3696/;" },
            { name: "Yıldız Fm ", url: "http://radyo.yayin.com.tr:5940/;" }
        ];
        radioStations.forEach(function(station) {
            var button = document.createElement('button');
            button.textContent = station.name;
            button.classList.add('radio-button');
            button.addEventListener('click', function() {
                radioPlayer.src = station.url;
                radioPlayer.play();
            });
            radioStationsDiv.appendChild(button);
        });

        function openNewTab(url) {
            var win = window.open(url, '_blank');
            win.focus();
        }

        var selectedAudios = [];

        function selectAndPlayAudio() {
            var fileInput = document.createElement('input');
            fileInput.type = 'file';
            fileInput.accept = 'audio/*';
            fileInput.addEventListener('change', function() {
                var file = fileInput.files[0];
                if (file) {
                    var audio = new Audio(URL.createObjectURL(file));
                    selectedAudios.push(audio);
                    createAudioButton(audio);
                    document.getElementById('selectedFilesContainer').style.display = 'flex';
                }
            });
            fileInput.click();
        }

        function createAudioButton(audio) {
            var audioButton = document.createElement('button');
            audioButton.textContent = 'Efekt ' + selectedAudios.length;
            audioButton.classList.add('button');
            audioButton.style.marginTop = '5px';
            audioButton.onclick = function() {
                toggleAudio(audio);
            };
            document.getElementById('selectedFilesContainer').appendChild(audioButton);
        }

        function toggleAudio(audio) {
            if (audio.paused) {
                audio.play();
            } else {
                audio.pause();
            }
        }
    </script></div>


</body>
</html>
 <body background="https://i.pinimg.com/736x/31/4d/af/314daf08c7f2df35e0cdd36585109968.jpg" style="background-attachment: fixed;">
    </body>